home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / s_to_z / strchpnl / stretchd.pas < prev    next >
Pascal/Delphi Source File  |  1996-09-15  |  819b  |  42 lines

  1. unit Stretchd;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, Spin, Grids, Calendar, FileCtrl, DBCtrls, StdCtrls,
  8.   Gauges, ExtCtrls, TStretch, Buttons, TabNotBk, ComCtrls;
  9.  
  10. type
  11.   TStretchy = class(TForm)
  12.         Stretchy1: TStretchPanel;
  13.         Stretchy2: TStretchPanel;
  14.     Label1: TLabel;
  15.     Gauge1: TGauge;
  16.     Button1: TButton;
  17.     ListBox1: TListBox;
  18.     DirectoryListBox1: TDirectoryListBox;
  19.     Calendar1: TCalendar;
  20.     Memo1: TMemo;
  21.     Edit1: TEdit;
  22.     CheckBox1: TCheckBox;
  23.         TabbedNotebook1: TTabbedNotebook;
  24.         Label2: TLabel;
  25.         SpeedButton1: TSpeedButton;
  26.     private
  27.     { Private declarations }
  28.   public
  29.     { Public declarations }
  30.   end;
  31.  
  32. var
  33.   Stretchy: TStretchy;
  34.  
  35. implementation
  36.  
  37. {$R *.DFM}
  38.  
  39.  
  40. initialization
  41. end.
  42.